home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / CSCdx07754.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  95 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Script License for details
  5. #
  6. # Thanks to Nicolas FISCHBACH (nico@securite.org) for his help
  7. #
  8. # Ref:  http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  9.  
  10.  
  11. if(description)
  12. {
  13.  script_id(11293);
  14.  script_bugtraq_id(5614, 5617);
  15.  script_version("$Revision: 1.4 $");
  16.  script_cve_id("CAN-2002-1100","CAN-2002-1098");
  17.  
  18.  
  19.  name["english"] = "CSCdx07754, CSCdx24622, CSCdx24632";
  20.  
  21.  script_name(english:name["english"]);
  22.  
  23.  desc["english"] = "
  24. The remote VPN concentrator is subject to multiple flaws :
  25.  
  26. - XML public rule
  27. - HTML pages access
  28. - HTML login processing
  29.  
  30. This vulnerability is documented as Cisco bug ID CSCdx07754, 
  31. CSCdx24622 and CSCdx24632
  32.  
  33. Solution : 
  34. http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  35. Risk factor : Medium
  36.  
  37. *** As Nessus solely relied on the banner of the remote host
  38. *** this might be a false positive
  39. ";
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Uses SNMP to determine if a flaw is present";
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  script_copyright(english:"This script is (C) 2003 Renaud Deraison");
  48.  
  49.  script_family(english:"CISCO");
  50.  
  51.  script_dependencie("snmp_sysDesc.nasl");
  52.  script_require_keys("SNMP/community",
  53.               "SNMP/sysDesc",
  54.               "CISCO/model");
  55.  script_require_ports("Services/www", 80);
  56.  exit(0);
  57. }
  58.  
  59.  
  60.  
  61. # The code starts here
  62. ok=0;
  63.  
  64. os = get_kb_item("SNMP/sysDesc"); if(!os)exit(0);
  65.  
  66. port = get_kb_list("Services/www");
  67. if(isnull(port)) 
  68. {
  69.  if(!get_port_state(80))exit(0);
  70.  soc = open_sock_tcp(80);
  71.  if(!soc)exit(0);
  72.  else close(soc);
  73. }
  74.  
  75.  
  76.  
  77. # Is this a VPN3k concentrator ?
  78. if(!egrep(pattern:".*VPN 3000 Concentrator.*", string:os))exit(0);
  79.  
  80. # < 3.5.3
  81. if(egrep(pattern:".*Version 3\.5\.Rel.*", string:os))ok = 1;
  82. if(egrep(pattern:".*Version 3\.5\.[0-2].*", string:os))ok = 1;
  83.  
  84. # 3.1.x
  85. if(egrep(pattern:".*Version 3\.1\.*", string:os))ok = 1;
  86.  
  87. # 3.0.x
  88. if(egrep(pattern:".*Version 3\.0\..*", string:os))ok = 1;
  89.  
  90. # 2.x.x
  91. if(egrep(pattern:".*Version 2\..*", string:os))ok = 1;
  92.  
  93.  
  94. if(ok)security_warning(port:161, proto:"udp");
  95.